home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / python2.4 / test / test_pep263.pyc (.txt) < prev    next >
Python Compiled Bytecode  |  2005-10-18  |  823b  |  21 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.4)
  3.  
  4. import unittest
  5. from test import test_support
  6.  
  7. class PEP263Test(unittest.TestCase):
  8.     
  9.     def test_pep263(self):
  10.         self.assertEqual(u'\xd0\x9f\xd0\xb8\xd1\x82\xd0\xbe\xd0\xbd'.encode('utf-8'), '\xd0\x9f\xd0\xb8\xd1\x82\xd0\xbe\xd0\xbd')
  11.         self.assertEqual(u'\\\xd0\x9f'.encode('utf-8'), '\\\xd0\x9f')
  12.  
  13.  
  14.  
  15. def test_main():
  16.     test_support.run_unittest(PEP263Test)
  17.  
  18. if __name__ == '__main__':
  19.     test_main()
  20.  
  21.